home *** CD-ROM | disk | FTP | other *** search
/ CyberMycha 2008 January / Cybermycha 1_2008.iso / Data.cab / _C3D217794F404432920FC53F2EBDD287 < prev    next >
Encoding:
Text File  |  2004-06-23  |  967 b   |  43 lines

  1. light("spot_shadowmap")
  2. {
  3.     pass()
  4.     {
  5.         VertexShader("SpotShadowMapVSVeryLow.vsh")
  6.  
  7.         tmu()
  8.         {
  9.             texgen("spotlight")
  10.  
  11.             texture()
  12.             {
  13.                 shadowmap()
  14.                 addressfunc("clamp", "clamp", "clamp")
  15.             }
  16.  
  17.             colorop("arg1", "texture", "current", "current")
  18.             alphaop("arg1", "texture", "current", "current")
  19.         }
  20.  
  21.         tmu()
  22.         {
  23.             texgen("shadowmap_z")
  24.  
  25.             texture()
  26.             {
  27.                 image("spot_z_inv.png")
  28.                 addressfunc("clamp", "clamp", "clamp")
  29.                 filtering("no_filtering")
  30.             }
  31.  
  32.             colorop("mul", "texture", "current", "current")
  33.             alphaop("arg2", "texture", "tfactor", "current")
  34.         }
  35.  
  36.         blendfunc("zero", "inv_src_color")
  37.         depthfunc("lequal", 0)
  38.         tfactor(0,0,0,0)
  39.         blackfog()
  40.     }
  41.  
  42. }
  43.